-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[playground] Bug Fix: change default dev port to 3000 #6026
Conversation
…ite upgrade regression)
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Does it make sense to put the port in the vite config file, rather than extend the npm scripts. I think it's cleaner, no strong opinion on this. Approved. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for quick follow-up!
@ivailop7 I also don't have a strong opinion about it either way. |
Fair enough |
Description
npm run dev
(and associatednpm run start
) used to start on port 3000, which was the old vite default. The default changed to 5173, but no reason we can't keep the previous behavior #6018 (review)Test plan
Before
npm run dev
listens on port 5173 (after #6018 was merged)After
npm run dev
listens on port 3000